home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 98 / Skunkware 98.iso / src / fileutil / tar-1.12.tar.gz / tar-1.12.tar / tar-1.12 / AC-PATCHES < prev    next >
Text File  |  1997-04-19  |  1KB  |  31 lines

  1. --- autoconf-2.12-ref/acgeneral.m4    Tue Nov 26 13:09:42 1996
  2. +++ autoconf-2.12/acgeneral.m4    Wed Apr 16 22:16:40 1997
  3. @@ -1063,7 +1063,7 @@
  4.  # and sets the high bit in the cache file unless we assign to the vars.
  5.  changequote(, )dnl
  6.  (set) 2>&1 |
  7. -  case `(ac_space=' '; set) 2>&1` in
  8. +  case `(ac_space=' '; set) 2>&1 | grep ac_space` in
  9.    *ac_space=\ *)
  10.      # `set' does not quote correctly, so add quotes (double-quote substitution
  11.      # turns \\\\ into \\, and sed turns \\ into \).
  12. --- autoconf-2.12-ref/acspecific.m4    Wed Nov 20 00:10:49 1996
  13. +++ autoconf-2.12/acspecific.m4    Sat Apr 19 15:33:08 1997
  14. @@ -451,8 +451,14 @@
  15.          # OSF/1 installbsd also uses dspmsg, but is usable.
  16.          :
  17.        else
  18. -        ac_cv_path_install="$ac_dir/$ac_prog -c"
  19. -        break 2
  20. +        if test $ac_prog = installbsd &&
  21. +          grep src/bos $ac_dir/$ac_prog >/dev/null 2>&1; then
  22. +          # AIX installbsd doesn't work without option "-g".
  23. +          :
  24. +        else
  25. +          ac_cv_path_install="$ac_dir/$ac_prog -c"
  26. +          break 2
  27. +        fi
  28.        fi
  29.      fi
  30.        done
  31.